100
|
How do I change the visual aspect for thumb parts in the scroll bars, using EBN

ExFileView1->VisualAppearance->Add(1,TVariant("c:\\exontrol\\images\\normal.ebn"));
ExFileView1->VisualAppearance->Add(2,TVariant("c:\\exontrol\\images\\pushed.ebn"));
ExFileView1->VisualAppearance->Add(3,TVariant("c:\\exontrol\\images\\hot.ebn"));
ExFileView1->Background[Exfileviewlib_tlb::BackgroundPartEnum::exHSThumb] = 0x1000000;
ExFileView1->Background[Exfileviewlib_tlb::BackgroundPartEnum::exHSThumbP] = 0x2000000;
ExFileView1->Background[Exfileviewlib_tlb::BackgroundPartEnum::exHSThumbH] = 0x3000000;
ExFileView1->Background[Exfileviewlib_tlb::BackgroundPartEnum::exVSThumb] = 0x1000000;
ExFileView1->Background[Exfileviewlib_tlb::BackgroundPartEnum::exVSThumbP] = 0x2000000;
ExFileView1->Background[Exfileviewlib_tlb::BackgroundPartEnum::exVSThumbH] = 0x3000000;
ExFileView1->ColumnAutoResize = false;
ExFileView1->ColumnWidth[L"Name"] = 256;
|
99
|
How do I change the visual aspect only for the thumb in the scroll bar, using EBN

ExFileView1->VisualAppearance->Add(1,TVariant("c:\\exontrol\\images\\normal.ebn"));
ExFileView1->VisualAppearance->Add(2,TVariant("c:\\exontrol\\images\\pushed.ebn"));
ExFileView1->VisualAppearance->Add(3,TVariant("c:\\exontrol\\images\\hot.ebn"));
ExFileView1->Background[Exfileviewlib_tlb::BackgroundPartEnum::exHSThumb] = 0x1000000;
ExFileView1->Background[Exfileviewlib_tlb::BackgroundPartEnum::exHSThumbP] = 0x2000000;
ExFileView1->Background[Exfileviewlib_tlb::BackgroundPartEnum::exHSThumbH] = 0x3000000;
ExFileView1->ColumnAutoResize = false;
ExFileView1->ColumnWidth[L"Name"] = 256;
|
98
|
How to check whether the control hides the three-letter file-name extensions for certain files, reducing clutter in folder windows

ExFileView1->Option[Exfileviewlib_tlb::OptionEnum::exHideFileExtensionsForKnownFileTypes] = TVariant(true);
ExFileView1->Refresh();
|
97
|
How can I change the date format in the Modified column

ExFileView1->Option[Exfileviewlib_tlb::OptionEnum::exModifiedDateFormat] = TVariant("yyyyy ");
ExFileView1->Option[Exfileviewlib_tlb::OptionEnum::exModifiedTimeFormat] = TVariant("hh:mm");
ExFileView1->Refresh();
|
96
|
How can I change the date format in the Modified column

ExFileView1->Option[Exfileviewlib_tlb::OptionEnum::exModifiedDateFormat] = TVariant("ddd, MMM dd yy");
ExFileView1->Refresh();
|
95
|
How can I change the format of the caption that's shown in the Modified column, if ModifiedDaysAgo property is used

ExFileView1->ModifiedDaysAgo = 356;
ExFileView1->Option[Exfileviewlib_tlb::OptionEnum::exModifiedDaysAgo] = TVariant("vor %i Tagen");
ExFileView1->Refresh();
|
94
|
How can I change the "today" caption that's shown in the Modified column

ExFileView1->ModifiedDaysAgo = 356;
ExFileView1->Option[Exfileviewlib_tlb::OptionEnum::exModifiedToday] = TVariant("__ new today __");
ExFileView1->Refresh();
|
93
|
Is there any way to rename a column

ExFileView1->ColumnCaption[L"Name"] = L"__ new name __";
|
92
|
Is there any option to exclude folders that match a pattern

ExFileView1->ExcludeFolderFilter = L"W*";
|
91
|
Is there any option to include only folders that match a pattern

ExFileView1->IncludeFolderFilter = L"W*";
|
90
|
How can I include files when folders are expanded

ExFileView1->ExpandFolders = true;
ExFileView1->IncludeFilesInFolder = true;
|
89
|
How do I get the file or folder from the cursor
// MouseMove event - Occurs when the user moves the mouse.
void __fastcall TForm1::ExFileView1MouseMove(TObject *Sender,short Button,short Shift,int X,int Y)
{
OutputDebugString( ExFileView1->FileFromPoint[-1,-1] );
}
OutputDebugString( ExFileView1->FileFromPoint[-1,-1] );
|
88
|
How can I expand programatically a folder

ExFileView1->ExpandFolders = true;
ExFileView1->Expand(L"WINNT");
|
87
|
Is there any option to remove the tooltip when the cursor hovers the column's drop down filter window

ExFileView1->ColumnFilterButton[L"Name"] = true;
ExFileView1->Description[Exfileviewlib_tlb::DescriptionTypeEnum::exFilterBarFilterTitle] = L"";
ExFileView1->Description[Exfileviewlib_tlb::DescriptionTypeEnum::exFilterBarPatternFilterTitle] = L"";
ExFileView1->Description[Exfileviewlib_tlb::DescriptionTypeEnum::exFilterBarTooltip] = L"";
ExFileView1->Description[Exfileviewlib_tlb::DescriptionTypeEnum::exFilterBarPatternTooltip] = L"";
ExFileView1->Description[Exfileviewlib_tlb::DescriptionTypeEnum::exFilterBarFilterForTooltip] = L"";
|
86
|
How can I change the "Filter For" caption in the column's drop down filter window

ExFileView1->ColumnFilterButton[L"Name"] = true;
ExFileView1->Description[Exfileviewlib_tlb::DescriptionTypeEnum::exFilterBarFilterForCaption] = L"new caption";
|
85
|
How do I change the "All" caption in the drop down filter window

ExFileView1->ColumnFilterButton[L"Name"] = true;
ExFileView1->Description[Exfileviewlib_tlb::DescriptionTypeEnum::exFilterBarAll] = L"new name for (All)";
|
84
|
How do I sort a column

ExFileView1->Sort(L"Name",false);
|
83
|
How do I change the font in the filter bar

ExFileView1->ColumnFilterButton[L"Name"] = true;
ExFileView1->ColumnFilterType[L"Name"] = Exfileviewlib_tlb::FilterTypeEnum::exPattern;
ExFileView1->ColumnFilter[L"Name"] = L"*.exe|*.com|*.bat";
ExFileView1->ApplyFilter();
ExFileView1->FilterBarFont->Name = L"Verdana";
|
82
|
How do I change the visual appearanceof the filter bar

ExFileView1->VisualAppearance->Add(1,TVariant("c:\\exontrol\\images\\normal.ebn"));
ExFileView1->ColumnFilterButton[L"Name"] = true;
ExFileView1->ColumnFilterType[L"Name"] = Exfileviewlib_tlb::FilterTypeEnum::exPattern;
ExFileView1->ColumnFilter[L"Name"] = L"*.exe|*.com|*.bat";
ExFileView1->ApplyFilter();
ExFileView1->FilterBarBackColor = 0x1000000;
|
81
|
How do I change the color in the filter bar

ExFileView1->ColumnFilterButton[L"Name"] = true;
ExFileView1->ColumnFilterType[L"Name"] = Exfileviewlib_tlb::FilterTypeEnum::exPattern;
ExFileView1->ColumnFilter[L"Name"] = L"*.exe|*.com|*.bat";
ExFileView1->ApplyFilter();
ExFileView1->FilterBarBackColor = RGB(255,0,0);
|
80
|
How do I change the color in the filter bar

ExFileView1->ColumnFilterButton[L"Name"] = true;
ExFileView1->ColumnFilterType[L"Name"] = Exfileviewlib_tlb::FilterTypeEnum::exPattern;
ExFileView1->ColumnFilter[L"Name"] = L"*.exe|*.com|*.bat";
ExFileView1->ApplyFilter();
ExFileView1->FilterBarForeColor = RGB(255,0,0);
|
79
|
How do I specify the height of the filter bar

ExFileView1->ColumnFilterButton[L"Name"] = true;
ExFileView1->ColumnFilterType[L"Name"] = Exfileviewlib_tlb::FilterTypeEnum::exPattern;
ExFileView1->ColumnFilter[L"Name"] = L"*.exe|*.com|*.bat";
ExFileView1->ApplyFilter();
ExFileView1->FilterBarHeight = 32;
|
78
|
How do I remove or clear the filter
ExFileView1->ColumnFilterButton[L"Name"] = true;
ExFileView1->ColumnFilterType[L"Name"] = Exfileviewlib_tlb::FilterTypeEnum::exPattern;
ExFileView1->ColumnFilter[L"Name"] = L"*.exe|*.com|*.bat";
ExFileView1->ApplyFilter();
ExFileView1->ClearFilter();
|
77
|
How do I change the caption in the filter bar

ExFileView1->ColumnFilterButton[L"Name"] = true;
ExFileView1->ColumnFilterType[L"Name"] = Exfileviewlib_tlb::FilterTypeEnum::exPattern;
ExFileView1->ColumnFilter[L"Name"] = L"*.exe|*.com|*.bat";
ExFileView1->ApplyFilter();
ExFileView1->FilterBarCaption = L"new filter";
|
76
|
How do I filter a column

ExFileView1->ColumnFilterButton[L"Name"] = true;
ExFileView1->ColumnFilterType[L"Name"] = Exfileviewlib_tlb::FilterTypeEnum::exPattern;
ExFileView1->ColumnFilter[L"Name"] = L"*.exe|*.com|*.bat";
ExFileView1->ApplyFilter();
|
75
|
How can I enlarge the height of the drop down filter window

ExFileView1->ColumnFilterButton[L"Name"] = true;
ExFileView1->FilterBarDropDownHeight = "-256";
|
74
|
How do I remove or clear my own filters

ExFileView1->ColumnFilterButton[L"Name"] = true;
ExFileView1->AddColumnCustomFilter(L"Name",L"(Executable files)",L"*.exe|*.com|*.bat");
ExFileView1->ClearColumnCustomFilters(L"Name");
|
73
|
How do I specify my own filters

ExFileView1->ColumnFilterButton[L"Name"] = true;
ExFileView1->AddColumnCustomFilter(L"Name",L"(Executable files)",L"*.exe|*.com|*.bat");
|
72
|
How can I enlarge the width of the drop down filter window

ExFileView1->ColumnFilterButton[L"Name"] = true;
ExFileView1->FilterBarDropDownWidth[L"Name"] = 2;
|
71
|
How can I enlarge the width of the drop down filter window

ExFileView1->ColumnFilterButton[L"Name"] = true;
ExFileView1->FilterBarDropDownWidth[L"Name"] = "-256";
|
70
|
How can I enable filtering the folders and files

ExFileView1->ColumnFilterButton[L"Name"] = true;
|
69
|
How do I display in the Modified column, the number of days since the file or folder was changed

ExFileView1->ModifiedDaysAgo = 356;
|
68
|
How do I stop programatically the searching
ExFileView1->StopSearch();
|
67
|
How do I search or find files

ExFileView1->Search = L"A*.A*";
|
66
|
How can I expand or collapse a folder, when the user double clicks it

ExFileView1->ExpandFolders = true;
ExFileView1->ExpandOnDblClk = true;
|
65
|
How can I change the default icon being displayed for parent folders

ExFileView1->LoadIcon(ExFileView1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\week.ico`)"),1234);
ExFileView1->IncludeParentIconKey = 1234;
|
64
|
How can I show only folders

ExFileView1->IncludeFiles = false;
|
63
|
How can I show or hide the expand/collapse buttons

ExFileView1->ExpandFolders = true;
ExFileView1->HasLines = true;
ExFileView1->HasLinesAtRoot = true;
ExFileView1->HasButtons = false;
|
62
|
How can I show the lines at root

ExFileView1->ExpandFolders = true;
ExFileView1->HasLines = true;
ExFileView1->HasLinesAtRoot = true;
|
61
|
How can I show the lines between child and parents

ExFileView1->ExpandFolders = true;
ExFileView1->HasLines = true;
|
60
|
Is there any option to add an expand or collapse (+/-) buttons left to each folder

ExFileView1->ExpandFolders = true;
|
59
|
How do I show or hide the first item that shows when I browse new folders

ExFileView1->IncludeParent = Exfileviewlib_tlb::IncludeParentEnum::exNoIncludeParent;
|
58
|
How do I enable or disable renaming the folders and files
ExFileView1->AllowRename = true;
|
57
|
How do I change the width of the columns

ExFileView1->ColumnAutoResize = false;
ExFileView1->ColumnWidth[L"Name"] = 256;
|
56
|
How do I change the width of the columns

ExFileView1->ColumnWidth[L"Name"] = 256;
|
55
|
How do I show or hide a column

ExFileView1->ColumnVisible[L"Type"] = false;
|
54
|
How can I get the path of the browsed folder
ExFileView1->BrowseFolderPath = L"C:\\Temp";
|
53
|
The Change event is not fired. What can I do
ExFileView1->ChangeNotification = true;
|
52
|
How do I execute a command from the file's content menu (sample 1)

ExFileView1->BeginUpdate();
ExFileView1->ExploreFromHere = L"";
ExFileView1->ExecuteContextCommand(L"C:\\",true,L"Properties");
ExFileView1->EndUpdate();
|
51
|
How do I change the width of the columns

ExFileView1->ColumnAutoResize = false;
ExFileView1->ColumnWidth[L"Name"] = 256;
|
50
|
How can I refresh automatically the control so it reflect the changes in the browsed folder
ExFileView1->AutoUpdate = true;
|
49
|
May I disable the control's content menu, that's displayed when the user does right click
ExFileView1->AllowMenuContext = false;
|
48
|
How do I refresh the control
|
47
|
How do I enable single or multiple selection

ExFileView1->SingleSel = false;
|
46
|
Can I display only all execpts the *.exe and *.com files using wild characters

ExFileView1->ExcludeFilter = L"*.exe *.com *.bat";
|
45
|
Can I display only *.exe and *.com files using wild characters

ExFileView1->IncludeFilter = L"*.exe *.com *.bat";
|
44
|
Can I change the folder being explored
ExFileView1->ExploreFromHere = L"c:\\Program Files";
|
43
|
Can I display only files

ExFileView1->IncludeFolders = false;
|
42
|
How can I change the default icon being displayed for specified folders

ExFileView1->LoadIcon(ExFileView1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\week.ico`)"),1234);
Exfileviewlib_tlb::IFileTypePtr var_FileType = ExFileView1->FileTypes->Add(L"W*");
var_FileType->Folder = true;
var_FileType->IconIndex = 1234;
var_FileType->Bold = true;
var_FileType->Apply();
|
41
|
How can I change the default icon being displayed for specified files

ExFileView1->LoadIcon(ExFileView1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\week.ico`)"),1234);
Exfileviewlib_tlb::IFileTypePtr var_FileType = ExFileView1->FileTypes->Add(L"*.bat *.com *.exe");
var_FileType->IconIndex = 1234;
var_FileType->Apply();
|
40
|
How can I change the default icon being displayed for files

ExFileView1->LoadIcon(ExFileView1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\week.ico`)"),1234);
Exfileviewlib_tlb::IFileTypePtr var_FileType = ExFileView1->FileTypes->Add(L"*");
var_FileType->IconIndex = 1234;
var_FileType->Apply();
|
39
|
How can I change the default icon being displayed for folders

ExFileView1->LoadIcon(ExFileView1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\week.ico`)"),1234);
Exfileviewlib_tlb::IFileTypePtr var_FileType = ExFileView1->FileTypes->Add(L"*");
var_FileType->Folder = true;
var_FileType->IconIndex = 1234;
var_FileType->Apply();
|
38
|
Does your control support partial check feature, so a parent item gets checked when all its child items are checked

ExFileView1->HasCheckBox = Exfileviewlib_tlb::CheckBoxEnum::PartialCheckBox;
ExFileView1->ExpandFolders = true;
|
37
|
Can I add a checkbox to each file or folder

ExFileView1->HasCheckBox = Exfileviewlib_tlb::CheckBoxEnum::CheckBox;
|
36
|
How do I put a picture on the center of the control

ExFileView1->Picture = (IPictureDisp*)(ExFileView1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"));
ExFileView1->PictureDisplay = Exfileviewlib_tlb::PictureDisplayEnum::MiddleCenter;
|
35
|
How do I resize/stretch a picture on the control's background

ExFileView1->Picture = (IPictureDisp*)(ExFileView1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"));
ExFileView1->PictureDisplay = Exfileviewlib_tlb::PictureDisplayEnum::Stretch;
|
34
|
How do I put a picture on the control's center right bottom side

ExFileView1->Picture = (IPictureDisp*)(ExFileView1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"));
ExFileView1->PictureDisplay = Exfileviewlib_tlb::PictureDisplayEnum::LowerRight;
|
33
|
How do I put a picture on the control's center left bottom side

ExFileView1->Picture = (IPictureDisp*)(ExFileView1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"));
ExFileView1->PictureDisplay = Exfileviewlib_tlb::PictureDisplayEnum::LowerLeft;
|
32
|
How do I put a picture on the control's center top side

ExFileView1->Picture = (IPictureDisp*)(ExFileView1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"));
ExFileView1->PictureDisplay = Exfileviewlib_tlb::PictureDisplayEnum::UpperCenter;
|
31
|
How do I put a picture on the control's right top corner

ExFileView1->Picture = (IPictureDisp*)(ExFileView1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"));
ExFileView1->PictureDisplay = Exfileviewlib_tlb::PictureDisplayEnum::UpperRight;
|
30
|
How do I put a picture on the control's left top corner

ExFileView1->Picture = (IPictureDisp*)(ExFileView1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"));
ExFileView1->PictureDisplay = Exfileviewlib_tlb::PictureDisplayEnum::UpperLeft;
|
29
|
How do I put a picture on the control's background

ExFileView1->Picture = (IPictureDisp*)(ExFileView1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"));
|
28
|
How do I change the control's border, using your EBN files

ExFileView1->VisualAppearance->Add(1,TVariant("c:\\exontrol\\images\\hot.ebn"));
ExFileView1->Appearance = Exfileviewlib_tlb::AppearanceEnum(0x1000000);
ExFileView1->BackColor = RGB(255,255,255);
|
27
|
How do I remove the control's border

ExFileView1->Appearance = Exfileviewlib_tlb::AppearanceEnum::None2;
|
26
|
How can I change the foreground color of the control's header

ExFileView1->ForeColorHeader = RGB(255,0,0);
|
25
|
How can I change the background color of the control's header

ExFileView1->BackColorHeader = RGB(255,255,0);
ExFileView1->HeaderAppearance = Exfileviewlib_tlb::AppearanceEnum::Flat;
|
24
|
How can I change the visual appearance of the header, using EBN files

ExFileView1->VisualAppearance->Add(1,TVariant("c:\\exontrol\\images\\normal.ebn"));
ExFileView1->BackColorHeader = 0x1000000;
|
23
|
How can I change the header's appearance

ExFileView1->HeaderAppearance = Exfileviewlib_tlb::AppearanceEnum::Flat;
|
22
|
How do I disable the control
ExFileView1->Enabled = false;
|
21
|
How do I change the visual appearance effect for the selected item, using EBN

ExFileView1->VisualAppearance->Add(1,TVariant("c:\\exontrol\\images\\normal.ebn"));
ExFileView1->SelBackColor = 0x1000000;
ExFileView1->SelForeColor = RGB(0,0,0);
|
20
|
How do I change the colors for the selected item

ExFileView1->SelBackColor = RGB(0,0,0);
|
19
|
How can I change the control's font

ExFileView1->Font->Name = L"Tahoma";
|
18
|
How do I show or hide the control's header bar

ExFileView1->HeaderVisible = false;
|
17
|
How do I change the control's foreground color

ExFileView1->ForeColor = RGB(120,120,120);
|
16
|
How do I change the control's background color

ExFileView1->BackColor = RGB(200,200,200);
|
15
|
How do I prevent painting the control while multiple changes occur
ExFileView1->BeginUpdate();
ExFileView1->ForeColor = RGB(255,0,0);
ExFileView1->BackColor = RGB(255,255,255);
ExFileView1->EndUpdate();
|
14
|
How do I change the height of the items

ExFileView1->DefaultItemHeight = 13;
ExFileView1->Refresh();
|
13
|
How do I enable resizing the columns at runtime

ExFileView1->ColumnsAllowSizing = true;
|
12
|
How do I call your x-script language

ExFileView1->ExecuteTemplate(L"BackColor = RGB(255,0,0)");
|
11
|
How do I call your x-script language

ExFileView1->Template = L"BackColor = RGB(255,0,0)";
|
10
|
Can I change the order of the buttons in the scroll bar

ExFileView1->ScrollOrderParts[Exfileviewlib_tlb::ScrollBarEnum::exHScroll] = L"t,l,r";
ExFileView1->ScrollOrderParts[Exfileviewlib_tlb::ScrollBarEnum::exVScroll] = L"t,l,r";
ExFileView1->ColumnAutoResize = false;
ExFileView1->ColumnWidth[L"Name"] = 256;
|
9
|
The thumb size seems to be very small. Can I make it bigger

ExFileView1->ScrollThumbSize[Exfileviewlib_tlb::ScrollBarEnum::exHScroll] = 64;
ExFileView1->ColumnAutoResize = false;
ExFileView1->ColumnWidth[L"Name"] = 256;
|
8
|
How do I enlarge or change the size of the control's scrollbars

ExFileView1->ScrollHeight = 18;
ExFileView1->ScrollWidth = 18;
ExFileView1->ScrollButtonWidth = 18;
ExFileView1->ScrollButtonHeight = 18;
ExFileView1->ColumnAutoResize = false;
ExFileView1->ColumnWidth[L"Name"] = 256;
|
7
|
How do I assign a tooltip to a scrollbar

ExFileView1->ScrollToolTip[Exfileviewlib_tlb::ScrollBarEnum::exHScroll] = L"This is a tooltip being shown when you click and drag the thumb in the vetrical scroll bar";
ExFileView1->ScrollPartCaption[Exfileviewlib_tlb::ScrollBarEnum::exHScroll,Exfileviewlib_tlb::ScrollPartEnum::exThumbPart] = L"This is just a text";
ExFileView1->ScrollFont[Exfileviewlib_tlb::ScrollBarEnum::exVScroll]->Size = TVariant(long(12));
ExFileView1->ScrollWidth = 20;
ExFileView1->ScrollThumbSize[Exfileviewlib_tlb::ScrollBarEnum::exVScroll] = 148;
ExFileView1->ColumnAutoResize = false;
ExFileView1->ColumnWidth[L"Name"] = 256;
|
6
|
I need to add a button in the scroll bar. Is this possible

ExFileView1->ScrollPartVisible[Exfileviewlib_tlb::ScrollBarEnum::exHScroll,Exfileviewlib_tlb::ScrollPartEnum::exLeftB1Part] = true;
ExFileView1->ScrollPartCaption[Exfileviewlib_tlb::ScrollBarEnum::exHScroll,Exfileviewlib_tlb::ScrollPartEnum::exLeftB1Part] = L"1";
ExFileView1->ColumnAutoResize = false;
ExFileView1->ColumnWidth[L"Name"] = 256;
|
5
|
Can I display an additional buttons in the scroll bar

ExFileView1->ScrollPartVisible[Exfileviewlib_tlb::ScrollBarEnum::exHScroll,Exfileviewlib_tlb::ScrollPartEnum::exLeftB1Part] = true;
ExFileView1->ScrollPartVisible[Exfileviewlib_tlb::ScrollBarEnum::exHScroll,Exfileviewlib_tlb::ScrollPartEnum::exLeftB2Part] = true;
ExFileView1->ScrollPartVisible[Exfileviewlib_tlb::ScrollBarEnum::exHScroll,Exfileviewlib_tlb::ScrollPartEnum::exRightB6Part] = true;
ExFileView1->ScrollPartVisible[Exfileviewlib_tlb::ScrollBarEnum::exHScroll,Exfileviewlib_tlb::ScrollPartEnum::exRightB5Part] = true;
ExFileView1->ColumnAutoResize = false;
ExFileView1->ColumnWidth[L"Name"] = 256;
|
4
|
Is there any option to highligth the column from the cursor - point
ExFileView1->Background[Exfileviewlib_tlb::BackgroundPartEnum::exCursorHoverColumn] = RGB(255,255,255);
|
3
|
Is there any option to highligth the column from the cursor - point
ExFileView1->VisualAppearance->Add(1,TVariant("c:\\exontrol\\images\\normal.ebn"));
ExFileView1->Background[Exfileviewlib_tlb::BackgroundPartEnum::exCursorHoverColumn] = 0x1000000;
|
2
|
How do I change the visual aspect of the close button in the filter bar, using EBN

ExFileView1->VisualAppearance->Add(1,TVariant("c:\\exontrol\\images\\normal.ebn"));
ExFileView1->Background[Exfileviewlib_tlb::BackgroundPartEnum::exFooterFilterBarButton] = 0x1000000;
ExFileView1->ColumnFilterButton[L"Name"] = true;
ExFileView1->ColumnFilterType[L"Name"] = Exfileviewlib_tlb::FilterTypeEnum::exPattern;
ExFileView1->ColumnFilter[L"Name"] = L"*.exe";
ExFileView1->ApplyFilter();
|
1
|
How do I change the visual aspect of the drop down filter button, using EBN

ExFileView1->VisualAppearance->Add(1,TVariant("c:\\exontrol\\images\\normal.ebn"));
ExFileView1->Background[Exfileviewlib_tlb::BackgroundPartEnum::exHeaderFilterBarButton] = 0x1000000;
ExFileView1->ColumnFilterButton[L"Name"] = true;
|